home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / multi-4a / types.bas < prev   
BASIC Source File  |  1999-08-25  |  501b  |  24 lines

  1. Attribute VB_Name = "types"
  2.  
  3. 'this is the data-type for each client.
  4. 'it keeps a record of everybody connected
  5. 'and also stores data on what socket they
  6. 'are using, customize for your needs.
  7.  
  8. Type client_type
  9.  
  10. 'socket they are using, 0 if not used
  11. socket As Integer
  12.  
  13. 'time they connected
  14. connected_at As String
  15.  
  16. 'remember when his last command was
  17. idle_since As String
  18.  
  19.  
  20. End Type
  21.  
  22. 'this creates an array for each possible client
  23. Public client(server_max_clients) As client_type
  24.